home *** CD-ROM | disk | FTP | other *** search
/ Pluspack 1 / Caligari Corporation Pluspack1 1998.iso / TSX_SDK / tsxINC / ItsxFog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-28  |  1.3 KB  |  44 lines

  1. //******************************************************************************
  2. //    File: ItsxFog.h
  3. //  Module: trueSpace eXtensions API
  4. //   Descr: Declarations for the ItsxFog COM interface
  5. //******************************************************************************
  6.  
  7.  
  8. #ifndef ITSXFOG_H
  9. #define ITSXFOG_H
  10.  
  11. #include "tsxcomtypes.h"
  12. #include "itsxcommon.h"
  13.  
  14.  
  15. #undef INTERFACE
  16. #define INTERFACE ItsxFog
  17.  
  18. DECLARE_INTERFACE_(ItsxFog, IUnknown)
  19. {
  20.     // IUnknown members
  21.     STDMETHOD(QueryInterface) (THIS_ REFIID, PPVOID) PURE;
  22.     STDMETHOD_(ULONG, AddRef)  (THIS) PURE;
  23.     STDMETHOD_(ULONG, Release) (THIS) PURE;
  24.  
  25.     // ItsxFog members
  26.     STDMETHOD(QueryFog) (THIS) PURE;
  27.     STDMETHOD(EnableFog) (THIS_ BOOL) PURE;
  28.     STDMETHOD(GetFogColor) (THIS_ tsxColor*) PURE;
  29.     STDMETHOD(SetFogColor) (THIS_ tsxColor*) PURE;
  30.     STDMETHOD(GetFogDistance) (THIS_ float*, float*) PURE;
  31.     STDMETHOD(SetFogDistance) (THIS_ float, float) PURE;
  32.     STDMETHOD(GetFogDensity) (THIS_ float*) PURE;
  33.     STDMETHOD(SetFogDensity) (THIS_ float) PURE;
  34. };
  35.  
  36. // typedef a pointer to this interface
  37. typedef ItsxFog* PITSXFOG;
  38.  
  39. // define a GUID for this interface
  40. // {7AECD220-3007-11d1-A255-006097D15F58}
  41. DEFINE_GUID(IID_ItsxFog, 0x7aecd220, 0x3007, 0x11d1, 0xa2, 0x55, 0x0, 0x60, 0x97, 0xd1, 0x5f, 0x58);
  42.  
  43.  
  44. #endif // ITSXFOG_H